home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / Sample Code / PartMaker 4.4 / PartMaker Documents / Script Runner• / Script Runner•.rsrc / dFRK_5027 < prev    next >
Encoding:
Text File  |  1995-12-12  |  995 b   |  34 lines

  1. /*------------------------------------------------------------------------------
  2.     File:        OSAPlugInDef.h
  3.  
  4.     Contains:    Common definitions used by the OSAPlugIn
  5.  
  6.     Written by:    Sue Dumont
  7.  
  8.     Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  9. ------------------------------------------------------------------------------*/
  10.  
  11. #ifndef _OSAPLUGINDEF_
  12. #define _OSAPLUGINDEF_
  13.  
  14. //==============================================================================
  15. // Constants
  16. //==============================================================================
  17.  
  18. // Class / Editor ID
  19. #define kAgentID                        "Sample::ScriptRunnerAgent"
  20. #define    kAgentPartClassName                "ScriptRunnerAgent"
  21. #define kAgentEditorName                "Sample_ScriptRunnerAgent"
  22.  
  23. #define kOSAPlugInOSType                'PUNR'
  24.  
  25. #define kBaseResourceID                    20001
  26.  
  27. // Bundles/FREFs
  28. #define kPlugInBundle                    kBaseResourceID
  29. #define kPlugInFREF                        kBaseResourceID
  30. #define kDocumentFREF                    kBaseResourceID+1
  31. #define kPlugInIcons                    kBaseResourceID
  32.  
  33. #endif
  34.